home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_sundry.py < prev    next >
Text File  |  2005-10-18  |  2KB  |  102 lines

  1. """Do a minimal test of all the modules that aren't otherwise tested."""
  2.  
  3. import warnings
  4. warnings.filterwarnings('ignore', r".*posixfile module",
  5.                         DeprecationWarning, 'posixfile$')
  6. warnings.filterwarnings('ignore', r".*statcache module",
  7.                         DeprecationWarning, 'statcache$')
  8.  
  9. from test.test_support import verbose
  10.  
  11. import BaseHTTPServer
  12. import CGIHTTPServer
  13. import Queue
  14. import SimpleHTTPServer
  15. import SocketServer
  16. import aifc
  17. import anydbm
  18. import audiodev
  19. import bdb
  20. import cmd
  21. import code
  22. import codeop
  23. import colorsys
  24. import commands
  25. import compileall
  26. try:
  27.     import curses   # not available on Windows
  28. except ImportError:
  29.     if verbose:
  30.         print "skipping curses"
  31. import dircache
  32. import dis
  33. import distutils
  34. import doctest
  35. import dumbdbm
  36. import encodings
  37. import fnmatch
  38. import formatter
  39. import fpformat
  40. import ftplib
  41. import getpass
  42. import glob
  43. import gopherlib
  44. import htmlentitydefs
  45. import htmllib
  46. import httplib
  47. import imaplib
  48. import imghdr
  49. import imputil
  50. import keyword
  51. import macpath
  52. import macurl2path
  53. import mailcap
  54. import mhlib
  55. import mimetypes
  56. import mimify
  57. import multifile
  58. import mutex
  59. import nntplib
  60. import nturl2path
  61. import pdb
  62. import pipes
  63. #import poplib
  64. import posixfile
  65. import profile
  66. import pstats
  67. import py_compile
  68. #import reconvert
  69. import repr
  70. try:
  71.     import rlcompleter   # not available on Windows
  72. except ImportError:
  73.     if verbose:
  74.         print "skipping rlcompleter"
  75. import robotparser
  76. import sched
  77. import sgmllib
  78. import shelve
  79. import shlex
  80. import shutil
  81. import smtplib
  82. import sndhdr
  83. import statcache
  84. import statvfs
  85. import stringold
  86. import sunau
  87. import sunaudio
  88. import symbol
  89. import tabnanny
  90. import telnetlib
  91. import test
  92. import toaiff
  93. #import tzparse
  94. import urllib2
  95. # Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
  96. # can screw up all sorts of things (esp. if it prints!).
  97. #import user
  98. import webbrowser
  99. import whichdb
  100. import xdrlib
  101. import xml
  102.